From: Chong Yidong Date: Sat, 17 Mar 2007 18:09:34 +0000 (+0000) Subject: * process.c (sigchld_handler): Change type of pid to pid_t. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~1584 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a4cc4ac645d856cf967a06c0eb068001f42fc595;p=emacs.git * process.c (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list explicitly to avoid using Fmember which don't know about mark bits and make_fixnum_or_float which may malloc. Reported by Andreas Schwab. * keyboard.c (read_key_sequence): Store original event into keybuf when replaying sequence with local keymap(s) from string. --- diff --git a/src/ChangeLog b/src/ChangeLog index 26a1e583363..2bcacbc9085 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,13 @@ +2007-03-12 Kim F. Storm + + * process.c (sigchld_handler): Change type of pid to pid_t. + Scan deleted_pid_list explicitly to avoid using Fmember which don't + know about mark bits and make_fixnum_or_float which may malloc. + Reported by Andreas Schwab. + + * keyboard.c (read_key_sequence): Store original event into keybuf + when replaying sequence with local keymap(s) from string. + 2007-03-11 Sam Steingold * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop.